Skip to content

Conversation

@gringrape
Copy link
Owner

Comment on lines +24 to +28
position = f'{r}-{c}'
if position not in counts:
counts[f'{r}-{c}'] = countPaths(r + 1, c) + countPaths(r, c + 1)

return counts[position]
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

position 수정

@gringrape
Copy link
Owner Author

dynamic programming table을 사용하는 방법을 추가하고 공간최적화 하기.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants